a5ff27f36de83fd68cb980e69d557abd3e360149,src/main/java/edu/sc/seis/TauP/TauP_WCreate.java,TauP_WCreate,start,#,130

Before Change


            e.printStackTrace();
        }
        slownessPlot.plot(tauPCreate.sMod, true);
        tauPPlot.plot(tauPCreate.tMod, true);
        timePlot.plot(tauPCreate.tMod, true);
        distPlot.plot(tauPCreate.tMod, true);
        timeDistPlot.plot(tauPCreate.tMod, true);

After Change



    public void start() {
        tauPCreate.modelFilename = modelFilename;
        tauPCreate.directory = directory;
        try {
            VelocityModel vMod = tauPCreate.loadVMod();
            TauModel tMod = tauPCreate.createTauModel(vMod);
            velocityPlot.plot(vMod, 'P', 'S');
            slownessPlot.plot(tMod.getSlownessModel(), true);
            tauPPlot.plot(tMod, true);
            timePlot.plot(tMod, true);
            distPlot.plot(tMod, true);
            timeDistPlot.plot(tMod, true);